Notes for the Airtable plugin

Install the new zip and move your api keys/configuration variables
from your old default.py to the new one. Move your settings.xml file,
icon, fanart, and addon.xml to the new addon folder.

-----------------------------------------------------------
For the regular tv channels:

Add this to your xml file, it is pointing to the xml containing the Tv channels

<dir>
  <name>Nan Tv Channels</name>
  <link>file://nan_tv.xml</link>
  <summary></summary>
</dir>

Add this code to your main xml or wherever you want the 
"Update Channel list" to be displayed

<dir>
  <title>Update Channel List</title>
  <link>plugin://plugin.video.'YOUR ADDON'/?mode=RunScript&url=special://home/addons/plugin.video.'YOUR ADDON'/resources/lib/plugins/AirTable/air_channels.py</link>
  <summary>Updates the Nan tv channels list</summary>
</dir>

replace 'YOUR ADDON' with the name of your addon

The nan_tv.xml file that is generated is written to the
 kodi/addons/plugin.video."YOUR ADDON"/xml folder
 
----------------------------------------------------------
For the sports tv channels:

Add this to your xml file, it is pointing to the xml containing the Sports channels

<dir>
  <name>Nan Sports Channels</name>
  <link>file://nan_sports.xml</link>
  <summary></summary>
</dir>

Add this code to your main xml or wherever you want the 
"Update Channel list" to be displayed

<dir>
  <title>Update Channel List</title>
  <link>plugin://plugin.video.'YOUR ADDON'/?mode=RunScript&url=special://home/addons/plugin.video.'YOUR ADDON'/resources/lib/plugins/AirTable/air_sports_channels.py</link>
  <summary>Updates the Nan tv channels list</summary>
</dir>

The nan_sorts.xml file that is generated is written to the
 kodi/addons/plugin.video."YOUR ADDON"/xml folder
---------------------------------------------------------


